UIScrollView

extension Reactive where Base: UIScrollView

The reactive extension can be accessed through the reactive instance property and the reactive static property.

  • Sets the content inset of the scroll view.

    Declaration

    Swift

    public var contentInset: BindingTarget<UIEdgeInsets>
  • Sets the scroll indicator insets of the scroll view.

    Declaration

    Swift

    public var scrollIndicatorInsets: BindingTarget<UIEdgeInsets>
  • Sets whether scrolling the scroll view is enabled.

    Declaration

    Swift

    public var isScrollEnabled: BindingTarget<Bool>
  • Sets the zoom scale of the scroll view.

    Declaration

    Swift

    public var zoomScale: BindingTarget<CGFloat>
  • Sets the minimum zoom scale of the scroll view.

    Declaration

    Swift

    public var minimumZoomScale: BindingTarget<CGFloat>
  • Sets the maximum zoom scale of the scroll view.

    Declaration

    Swift

    public var maximumZoomScale: BindingTarget<CGFloat>